home *** CD-ROM | disk | FTP | other *** search
- /*
- File: DowncaseFilter.h
-
- Contains: class DowncaseFilter
-
- Version: 1.0
-
- Copyright: © 1996-1997 by Apple Computer, Inc., all rights reserved.
-
- File Ownership:
-
- DRI: Farzin Maghoul
-
- Other Contact: Kevin Tiene
-
- Technology: xxx put the technology group name here xxx
-
- Writers:
-
- (dgc) David Cásseres
-
- Change History (most recent first):
-
- <5> 1/22/97 dgc Added this header
- */
-
- #pragma once
- #ifndef DowncaseFilter_h
- #define DowncaseFilter_h
-
- #pragma import on
-
- #include "IAAnalysis.h"
-
- #pragma IA_BEGIN_EXPORTS
-
- class DowncaseFilter : public IATokenFilter {
- public:
- DowncaseFilter(IATokenStream* s) : IATokenFilter(s) {}
- virtual IAToken* GetNextToken();
- };
-
- #pragma IA_END_EXPORTS
-
- #pragma import reset
-
- #endif
-